home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_gen / inter49d.zip / GLOSSARY.LST < prev    next >
File List  |  1996-02-11  |  37KB  |  981 lines

  1. GLOSSARY            Release 49        Last Change 2/11/96
  2. Copyright (c) 1989,1990,1991,1992,1993,1994,1995,1996 Ralf Brown
  3.  
  4. A20
  5.     (Address line 20) The 80286 and higher CPUs allow addresses in
  6. real mode to extend slightly beyond the one megabyte mark, which causes
  7. an incompatibility with some older programs which expect such addresses
  8. to wrap back to the beginning of the address space.  For complete
  9. compatibility with the 8088, newer machines thus contain circuitry
  10. which permits the twenty-first address line (A20) to be disabled.  The
  11. CPU then effectively has only twenty address lines in real mode, just
  12. as the 8088 does, and addresses which would extend beyond the one
  13. megabyte mark wrap to the beginning of the address space.  See also
  14. High Memory Area, Real Mode.
  15.  
  16. ABIOS
  17.     (Advanced BIOS) The IBM XT/286 and PS/2 models with 80286 or
  18. higher processors contain two separate BIOSes.  The ABIOS is a
  19. protected-mode BIOS which is used by OS/2.  For machines without an
  20. ABIOS, such as the IBM AT, OS/2 loads the equivalent of the ABIOS from
  21. disk.  see also CBIOS
  22.  
  23. API
  24.     (Application Program[ming] Interface) The defined set of calls
  25. which a program may make to interact with or request services of the
  26. operating system or environment under which it is running.  Because the
  27. inputs and outputs of the calls are well-defined, a program using the
  28. API can continue using the identical calls even if the internal
  29. organization of the program providing the API changes.
  30.  
  31. APL
  32.     (A Programming Language) An interactive, mathematically-
  33. oriented language which is well-suited to manipulating matrices.
  34. Originally using greek letters and numerous special symbols, thus
  35. requiring a special display, versions are now available which use
  36. keywords in place of the special symbols.
  37.  
  38. ASCIZ
  39.     A NUL-terminated ASCII string.  The ASCIZ string "ABC" consists
  40. of the four bytes 41h, 42h, 43h, and 00h.  Unless otherwise specified,
  41. maximum lengths given in the interrupt list do not include the
  42. terminating NUL.
  43.  
  44. AVATAR
  45.     (Advanced Video Attribute Terminal Assembler and Recreator) A
  46. set of control codes which may be used to affect the output of
  47. characters to the screen on systems equipped with an appropriate
  48. driver.  Similar in intent to ANSI sequences, AVATAR has shorter
  49. command sequences and provides additional PC-specific functionality.
  50. AVATAR is primarily used by the Opus and Maximus bulletin board systems
  51. (it was designed by one of the developers of the Opus system).
  52.  
  53. BASIC
  54.     (Beginner's All-purpose Symbolic Instruction Code) A
  55. programming language originally designed as a means of teaching
  56. FORTRAN.  There are many variations of BASIC with differing
  57. capabilities; the majority are interpreted but compiled BASIC is
  58. becoming more popular.  All genuine IBM personal computers (including
  59. the latest PS/2 models) come equipped with a cassette-based BASIC
  60. interpreter in ROM.
  61.  
  62. BCD
  63.     (Binary Coded Decimal) A method of data storage where two
  64. decimal digits are stored in each byte, one in the upper four bits and
  65. the other in the lower four bits.  Since only the values 0 through 9
  66. are used in each half of a byte, BCD values can be read as decimal
  67. numbers on a hexadecimal display of memory or a file.
  68.  
  69. Big-Endian
  70.     One of the two major ways of organizing multi-byte numeric
  71. values in memory.  A big-endian layout places the most significant byte
  72. of the value in the lowest (first) memory location, i.e. 12345678h is
  73. stored as 12h 34h 56h 78h.  Motorola processors are big-endian.  Compare
  74. Little-Endian.
  75.  
  76. BIOS
  77.     (Basic Input/Output System) A set of standardized calls giving
  78. low-level access to the hardware.  The BIOS is the lowest software
  79. layer above the actual hardware and serves to insulate programs (and
  80. operating systems) which use it from the details of accessing the
  81. hardware directly.
  82.  
  83. BIOS Parameter Block
  84.     The BIOS Parameter Block stores the low-level layout of a
  85. drive.  See also INT 21h Function 53h.
  86.  
  87. Boot
  88.     To start up the computer or operating system. The term "boot"
  89. is a contraction of "bootstrap", which in turn comes from the
  90. expression "to lift oneself by one's boot straps."  The ROM BIOS on IBM
  91. PCs and compatibles reads in the first sector of the disk, which
  92. contains a short (less than 500 bytes) program that reads in a portion
  93. of the operating system, which in turn reads in the remainder of the
  94. operating system.  See also IPL.
  95.  
  96. Boot Drive
  97.     The disk drive from which the operating system was booted.  See
  98. also Boot.
  99.  
  100. BPB
  101.     see BIOS Parameter Block
  102.  
  103. Breakpoint
  104.     When debugging, a memory location which when accessed causes a
  105. break in the normal flow of execution and the invocation of the
  106. debugger.  Used to let a program run at full speed until a certain
  107. instruction is reached or (less frequently) a particular data item is
  108. accessed or changed.
  109.  
  110. Cache
  111.     Caching is a method of increasing performance by keeping
  112. frequently-used data in a location which is more quickly accessed. The
  113. most common caches are disk caches (store disk sectors in RAM) and RAM
  114. caches (store portions of main memory in special high-speed RAM which
  115. may be accessed as fast as the CPU is capable of accessing memory).
  116. See also Delayed Write, Write-Through.
  117.  
  118. Callback
  119.     A call to a specified function made by the operating system or
  120. operating environment when a request (usually an asynchronous request)
  121. completes.  This permits the calling program to continue operating while
  122. the request is processed yet still be aware of its completion
  123. immediately without the need to constantly poll the request's status.
  124. See also Callout.
  125.  
  126. Callout
  127.     A call made by the operating system, operating environment, or
  128. an application program on various events, which may be intercepted by
  129. other software which is interested in the current state of the system.
  130. See also Callback, External Device Interface.
  131.  
  132. CAS
  133.     see Communicating Applications Specification
  134.  
  135. CBIOS
  136.     (Compatibility BIOS) The IBM XT/286 and PS/2 models with 80286
  137. or higher processors contain two separate BIOSes.  The CBIOS is a
  138. real-mode BIOS which is compatible with the earlier products in the IBM
  139. PC family and PS/2 models with 8086 processors.  See also ABIOS.
  140.  
  141. CDS
  142.     see Current Directory Structure
  143.  
  144. CGA
  145.     (Color/Graphics Adapter) One of the two video display boards
  146. introduced together with the original IBM PC.  See also HGC, MDA.
  147.  
  148. Clock Tick
  149.     1/18.2 second, or approximately 55 milliseconds.  This is the
  150. rate at which the IBM PC's system clock is updated.
  151.  
  152. CMOS
  153.     (Complementary Metal-Oxide-Silicon) A type of integrated
  154. circuit design known for its low power consumption.
  155.  
  156. CMOS RAM
  157.     A small amount (typically 64 or 128 bytes) of memory in the system's
  158. real-time clock chip that is preserved by the clock's battery and is used for
  159. storing configuration information.  See also Real-Time Clock.
  160.  
  161. Communicating Applications Specification
  162.     DCA and Intel's standard programmatic interface for sending and
  163. receiving FAXes via any of a number of internal FAX boards.
  164.  
  165. CP/M
  166.     (Control Program for Microcomputers) An early operating system
  167. for micros based on the 8-bit Intel 8080 CPU (and later the compatible
  168. 8085 and Zilog Z80 CPUs).  MSDOS version 1.0 was essentially a clone of
  169. CP/M for the Intel 8086.
  170.  
  171. CP/M-86
  172.     One of the three operating systems offered by IBM for its
  173. original PC (the other two were MSDOS and the UCSD p-System).  It has
  174. since evolved into DR-DOS version 6 and Novell DOS 7.
  175.  
  176. CPU
  177.     (Central Processing Unit) The microprocessor which executes
  178. programs on your computer.
  179.  
  180. Current Directory Structure
  181.     The data record used by DOS to keep track of the current
  182. directory on a drive; whether the drive is valid, network, SUBSTituted,
  183. or JOINed; and other pertinent information.  See also INT 21h Function
  184. 52h.
  185.  
  186. Cylinder
  187.     The set of concentric tracks of data located at the same
  188. position on each data-bearing surface of the disk. A double-sided
  189. floppy will contain two tracks per cylinder.
  190.  
  191. DAC
  192.     (Digital-to-Analog Converter) A hardware device (in its simplest
  193. form, nothing more than a set of interconnected resistors) which converts
  194. a digital number into an analog signal whose voltage is proportional to
  195. the value of the digital number.  VGA and later color video boards use
  196. DACs to convert color values into the analog signals sent to the display;
  197. sound boards normally use DACs as well.
  198.  
  199. DCC
  200.     (Display Combination Code) A number which indicates both the
  201. type of display adapter board and the type of monitor attached to the
  202. video board.
  203.  
  204. Delayed Write
  205.     A form of caching in which control is returned before the data is
  206. actually written to the storage media.  See also Cache, Write-Through.
  207.  
  208. Device Driver
  209.     An interface module between the device-independent portions of
  210. the operating system and an actual hardware device which converts
  211. device-independent requests into the actual sequence of device
  212. operations to perform the requested action.  IO.SYS contains the
  213. standard, built-in MSDOS device drivers such as CON, COM1, AUX, PRN,
  214. etc.  See also INT 21h Function 52h and INT 2Fh Function 0802h.
  215.  
  216. Device Driver Request Header
  217.     The data structure passed to a device driver which contains the
  218. command to be executed, its parameters, and space for a returned status
  219. and data values.  See INT 2Fh Function 0802h.
  220.  
  221. DGIS
  222.     (Direct Graphics Interface Standard)
  223.  
  224. Direct Memory Access
  225.     A method whereby peripherals may transfer data into or out of
  226. main memory without the involvement of the CPU.
  227.  
  228. Disk Transfer Address
  229.     The Disk Transfer Address indicates where functions which do
  230. not take an explicit data address will read or store data.  Although
  231. the name implies that only disk accesses use this address, other
  232. functions use it as well.  See INT 21h Function 4Eh for an example of
  233. the DTA's use.
  234.  
  235. DLL
  236.     see Dynamic Link Library
  237.  
  238. DMA
  239.     see Direct Memory Access
  240.  
  241. DOS Extender
  242.     A program which allows a program to run in protected mode while still
  243. retaining access to real-mode MSDOS services.  See also Protected Mode.
  244.  
  245. DOS Parameter List
  246.     The DOS Parameter List is used to pass arguments to SHARE and
  247. network functions.  See also INT 21h Function 5D00h.
  248.  
  249. DOS Protected-Mode Interface
  250.     An API which provides basic services for protected-mode programs to
  251. allocate memory, invoke real-mode software, etc.  See also Virtual Control
  252. Program Interface.
  253.  
  254. DOS Protected-Mode Services
  255.     An API designed by Novell (and first released with Novell DOS 7) which
  256. allows TSRs to store most of themselves outside of the first megabyte of
  257. memory.
  258.  
  259. DPB
  260.     see Drive Paramter Block
  261.  
  262. DPL
  263.     see DOS Parameter List
  264.  
  265. DPMI
  266.     see DOS Protected-Mode Interface
  267.  
  268. DPMS
  269.     see DOS Protected-Mode Services
  270.  
  271. DRAM
  272.     (Dynamic Random Access Memory) RAM memory which essentially consists
  273. of a tiny capacitor for each bit of memory.  Since capacitors do not hold
  274. a charge indefinitely, DRAM must be constantly refreshed to avoid losing
  275. its contents.  Also, the process of reading the contents of the memory are
  276. destructive, meaning extra time must be spent restoring the contents of
  277. memory addresses which are accessed, so DRAM is slower than SRAM.  See also
  278. Refresh, SRAM.
  279.  
  280. Drive Parameter Block
  281.     The DOS Drive Parameter Block stores the description of the
  282. media layout for a logical drive, as well as some housekeeping
  283. information.  See also INT 21h Function 1Fh and INT 21h Function 32h.
  284.  
  285. DTA
  286.     see Disk Transfer Address
  287.  
  288. DWORD
  289.     Doubleword; four bytes.  Commonly used to hold a 32-bit
  290. segment:offset or selector:offset address.
  291.  
  292. Dynamic Link Library
  293.     A collection of subroutines which are linked with a program at
  294. the time it is loaded into memory rather than permanently placed in the
  295. executable.  This has the advantage of allowing a single copy of the
  296. subroutine library to reside on disk or in memory even when it is used
  297. by many programs.  It also permits all programs using the DLL to be
  298. updated without recompiling simply by installing a new version of the
  299. library.
  300.  
  301. EGA
  302.     (Enhanced Graphics Adapter) IBM's second color video board for the
  303. IBM PC family, capable of a maximum resolution of 640x350 pixels in 16
  304. simultaneous colors of a total of 64 possible colors.
  305.  
  306. EISA
  307.     (Enhanced Industry-Standard Architecture) A 32-bit superset of the
  308. IBM AT's expansion bus (which is now known as the ISA or Industry-Standard
  309. Architecture bus).
  310.  
  311. EMS
  312.     see Expanded Memory Specification
  313.  
  314. EOI
  315.     (End of Interrupt) A particular command sent to the interrupt
  316. controller to indicate that the interrupt has been handled by software
  317. and that new interrupts of the same or lower priority may now be signalled
  318. by the interrupt controller.
  319.  
  320. ESDI
  321.     (Enhanced Small Device Interface) A disk drive interface type
  322. which was briefly popular before IDE took over.  An ESDI drive can
  323. transfer data between the drive and controller at 10, 15, or 20
  324. megabits per second, which is faster than an MFM or RLL controller but
  325. slower than what is possible with an IDE or SCSI drive.  See also IDE.
  326.  
  327. Exception
  328.     A signal by the CPU that some error condition has been encountered
  329. that it can not deal with without a program's intervention.  The most commonly
  330. encountered exceptions on Intel processors are Exceptions 12 and 13, which
  331. are stack and general problems, respectively.  Exception 13 is typically
  332. caused by a memory access which wraps from the end of a segment back to
  333. the beginning.
  334.  
  335. Expanded Memory Specification
  336.     A specification devised by Lotus, Intel, and Microsoft for
  337. accessing more than one megabyte of memory by bank-switching additional
  338. memory into the one megabyte real mode address space.
  339.  
  340. Extended BIOS Data Area
  341.     A block of memory, typically the 1K at the top of conventional
  342. memory, which is used to store additional data for use by the BIOS which
  343. does not fit into the 256-byte data area at segment 0040h.
  344.  
  345. Extended File Control Block
  346.     A DOS File Control Block which has had an additional seven
  347. bytes prepended to permit control of file attributes (which are stored
  348. in the appendage).  See also FCB.
  349.  
  350. Extended Memory
  351.     Memory beyond the one megabyte address which is available only
  352. on 80286 and higher machines.  Except for a small portion (the High
  353. Memory Area), extended memory is only accessible from protected mode.
  354.  
  355. Extended Memory Specification
  356.     A specification devised by Microsoft which allows multiple
  357. programs to share extended (above 1 megabyte) memory and noncontiguous
  358. memory above 640K.  See also Upper Memory Block.
  359.  
  360. External Device Interface
  361.     A series of calls made by the DESQview multitasker on various
  362. "interesting" events, which may be intercepted by programs which wish to
  363. keep track of the current system state.  See also Callout.
  364.  
  365. FAT
  366.     see File Allocation Table
  367.  
  368. FCB
  369.     see File Control Block
  370.  
  371. File Allocation Table
  372.     A data structure on disk that records which clusters are free,
  373. which are unusable, and which have been allocated.  The clusters occupied
  374. by a file are linked into a list in the file allocation table, allowing
  375. DOS to find the contents of the file.
  376.  
  377. File Control Block
  378.     A data record in the calling program's address space which is
  379. used by DOS 1.x functions to record the state of an open file.  See
  380. also INT 21h Function 13h.
  381.  
  382. File Handle
  383.     A small positive integer used to identify the previously-opened
  384. file on which a program wishes to perform an operation.
  385.  
  386. Flush
  387.     To force the copying of any data still stored in temporary
  388. buffers to its final destination.
  389.  
  390. FM
  391.     (Frequency Modulation)  A method of encoding data as a series of
  392. magnetic flux reversals on disk or tape, commonly known as single-density
  393. recording.  In frequency modulation, a series of clock pulses are written
  394. at regular intervals, with one data bit for each clock pulse.  See also
  395. MFM, RLL.
  396.  
  397. Formatting
  398.     Preparing a storage medium (usually magnetic media such as a
  399. disk or tape) for storing data.  Low-level or physical formatting
  400. writes all necessary housekeeping data to enable the storage device
  401. to read the media and may also initialize the storage units on the
  402. media to a known state.  High-level or logical formatting writes data
  403. used by the operating system, such as allocation information and
  404. directories onto media which has already been physically formatted.
  405. Formatting programs often perform both a low-level and a high-level
  406. format.
  407.  
  408. FOSSIL
  409.     (Fido/Opus/Seadog Standard Interface Layer)  A standardized API
  410. for performing serial I/O, originally used by the Fido and Opus bulletin-
  411. board software and Seadog bulletin-board mailer, but now in wider use.
  412.  
  413. FTP
  414.     (File Transfer Protocol)  The standard protocol for copying files
  415. from one machine to another on a TCP/IP (Internet) network.  Also the
  416. program of the same name with which a user may transfer files.
  417.  
  418. Gather-Write
  419.     see Scatter/Gather
  420.  
  421. Handle
  422.     A short identifier, usually a small integer or a pointer, for
  423. some other object which is maintained or controlled by the operating
  424. system or environment; a particular handle may be valid system-wide or
  425. may have meaning only for a particular process.  See also File Handle.
  426.  
  427. HGC
  428.     (Hercules Graphics Card) A monochrome video adapter capable
  429. of 720x352 monochrome graphics.  The HGC was the first non-IBM video
  430. adapter for the IBM PC.  See also CGA, MDA.
  431.  
  432. High Memory Area
  433.     The first 65520 bytes (64K less 16 bytes) of extended memory.
  434. This area is accessible from real mode on the 80286 and higher
  435. processors because these processors do not wrap addresses at one
  436. megabyte as the 8088 and 8086 do.  See also A20, INT 2Fh Functions
  437. 4A01h.
  438.  
  439. HMA
  440.     see High Memory Area
  441.  
  442. Horizontal Retrace
  443.     When a monitor has finished displaying a single scan line, it must
  444. move it electron beam(s) back to the left edge of the CRT, during which time
  445. it turns off the beam.  On the original CGA (and some early clones), the
  446. only time one could access the display memory without causing "snow" was
  447. during the horizontal or vertical retrace periods, as the display adapter
  448. was not itself accessing the display memory during those times.  See also
  449. Vertical Retrace.
  450.  
  451. IDE
  452.     (Integrated Drive Electronics) A type of disk drive interface
  453. which essentially extends the PC's expansion bus all the way to the
  454. drive and places the drive controller on the disk drive itself.  See
  455. also ESDI.
  456.  
  457. IFS
  458.     see Installable File System
  459.  
  460. Installable File System
  461.     An Installable File System which allows non-DOS format media to
  462. be used by DOS.  In most ways, an IFS is very similar to a networked
  463. drive, although an IFS would typically be local rather than remote.
  464. See also INT 21h Function 52h.
  465.  
  466. IP
  467.     (Internet Protocol) The lower level (transport layer) of the
  468. TCP/IP protocol suite.  See also TCP, TCP/IP.
  469.  
  470. IPC
  471.     (Inter-Process Communication) Any one of numerous methods for
  472. allowing two or more separate processes to exchange data.
  473.  
  474. IPL
  475.     (Initial Program Load) See Boot.
  476.  
  477. IPX
  478.     (Internetwork Packet Exchange) A low-level layer of Novell's
  479. NetWare networking software.
  480.  
  481. IRQ
  482.     (Interrupt ReQuest) A hardware line connected to the interrupt
  483. controller chip which signals that a CPU interrupt should be generated.
  484.  
  485. ISA
  486.     (Industry-Standard Architecture) The expansion bus used by the
  487. IBM PC/AT.  See also EISA.
  488.  
  489. JFT
  490.     see Job File Table
  491.  
  492. Job File Table
  493.     The Job File Table (also called Open File Table) stored in a
  494. program's PSP which translates handles into SFT numbers.  See also INT
  495. 21h Function 26h.
  496.  
  497. LCD
  498.     (Liquid Crystal Display)
  499.  
  500. List of Lists
  501.     An internal DOS table of lists and other tables through which
  502. most DOS-internal data structures may be reached.  See INT 21h Function
  503. 52h.
  504.  
  505. Little-Endian
  506.     One of the two major ways of organizing multi-byte numeric
  507. values in memory.  A little-endian layout places the least significant
  508. byte of the value in the lowest (first) memory location, i.e. 12345678h
  509. is stored as 78h 56h 34h 12h.  Intel processors are little-endian.
  510. Compare Big-Endian.
  511.  
  512. LPT
  513.     Abbreviation for Line PrinTer.
  514.  
  515. MCB
  516.     see Memory Control Block
  517.  
  518. MCGA
  519.     (Multi-Color Graphics Array) The low-end color adapter offered
  520. in IBM's early PS/2 series machines.
  521.  
  522. MDA
  523.     (Monochrome Display Adapter) A text-only video adapter introduced
  524. together with the original IBM PC.  See also CGA, HGC.
  525.  
  526. Memory Control Block
  527.     The data structure containing the length and owner (among other
  528. things) of a portion of the memory managed by DOS.  See INT 21h
  529. Function 52h.
  530.  
  531. MFM
  532.     (Modified Frequency Modulation) A method of encoding data as a
  533. series of magnetic flux reversals on disk or tape, commonly known as
  534. double-density recording.  In contrast to FM, modified frequency
  535. modulation omits all clock pulses except those between pairs of zero
  536. bits.  See also FM, RLL.
  537.  
  538. Mickey
  539.     The smallest increment of motion a mouse can sense.
  540.  
  541. MIDI
  542.     (Musical Instrument Digital Interface) A standardized interface
  543. for controlling musical instruments with a computer.
  544.  
  545. Modem
  546.     (contraction of MOdulator/DEModulator)
  547.  
  548. MSR
  549.     (Model-Specific Register) Additional, indirectly-accessible,
  550. registers containing control or status information about various
  551. aspects of the processor such as caches, performance counters, and the
  552. like.   These registers, accessible via the RDMSR and WRMSR
  553. instructions, were added with the Pentium and later-model 486
  554. processors.
  555.  
  556. Multitasking
  557.     Any of a number of methods by which multiple programs may
  558. execute concurrently, with rapid switching between the programs giving
  559. the appearance that all are executing simultaneously.
  560.  
  561. MZ
  562.     The letters M and Z appear in numerous places in DOS (memory
  563. control blocks, .EXE header, etc.); the conventional explanation is
  564. that these are the initials of Mark Zbikowski, one of the principal
  565. architects of MSDOS 2.0.
  566.  
  567. NCB
  568.     see Network Control Block
  569.  
  570. NDIS
  571.     (Network Driver Interface Specification) A hardware-independent
  572. network interface developed by Microsoft and 3com.  See also Packet
  573. Driver, TCP/IP.
  574.  
  575. NetBIOS
  576.     One of a number of low-level device-independent network
  577. interfaces; the other major interfaces are Novell's IPX and the
  578. Internet's IP (Internet Protocol, the lower-level portion of TCP/IP).
  579.  
  580. Network Control Block
  581.     A Network Control Block used to pass requests to NetBIOS and
  582. receive status information from the NetBIOS handler.
  583.  
  584. Network Redirector
  585.     A program which permits access to network devices (disks,
  586. printers, etc.) using the MSDOS kernel network redirector interface.
  587. See also Network Shell, Redirector Interface.
  588.  
  589. Network Shell
  590.     A program which permits access to network devices (disks,
  591. printers, etc.) by intercepting DOS calls before they reach the DOS
  592. kernel and handling those operating on network devices while passing
  593. through actions on local devices.  See also Network Redirector.
  594.  
  595. NMI
  596.     see Non-Maskable Interrupt
  597.  
  598. Non-Maskable Interrupt
  599.     An interrupt which can not be disabled by clearing the CPU's
  600. interrupt enable flag, unlike most normal interrupts.  Non-maskable
  601. interrupts are typically used to signal calamities which require
  602. immediate action, such as a hardware failure or imminent loss of power.
  603.  
  604. Non-Volatile RAM
  605.     Memory which can be modified like normal RAM but does not lose
  606. its contents when the system's power is turned off. This memory may be
  607. powered by a battery when the system power if off, or it may be a type
  608. of memory which does not need electricity to maintain its contents,
  609. such as EEPROM or bubble memory.
  610.  
  611. NVRAM
  612.     see Non-Volatile RAM
  613.  
  614. ODI
  615.     (Open Data-link Interface) A hardware-independent network
  616. interface developed by Novell, Inc.  See also NDIS, Packet Driver.
  617.  
  618. Open File Table
  619.     see Job File Table
  620.  
  621. Overscan Area
  622.     The "border" between the edge of the area where graphics or text can
  623. be displayed and the actual edge of the area the video adapter can illuminate
  624. on the monitor's screen.
  625.  
  626. Overscan Register
  627.     On a display adapter, the control register which specifies the color
  628. to be displayed in the overscan area.
  629.  
  630. Packet Driver
  631.     Any one of the numerous drivers conforming to FTP Software's
  632. Packet Driver Specification, which provides a hardware-independent
  633. network interface.  See also NDIS, ODI.
  634.  
  635. Page Fault
  636.     A CPU-generated signal, and the operating system's reaction to it,
  637. generated when a program accesses a page of virtual memory which is not
  638. located in RAM at the time.  The operating system's response is to load in
  639. the required page, possibly writing some other page out to disk in order
  640. to make room.  See also INT 0E.
  641.  
  642. Page Register
  643.     A peripheral register or I/O port used to extend the addressing
  644. range of some other register or I/O port.  The prime example are
  645. the DMA page registers, which allow the DMA controller to address
  646. more than 64K (since the DMA controller only contains 16 address
  647. lines; this is the cause of the 64K DMA boundaries).
  648.  
  649. Palette Register
  650.     A memory location on the video controller which specifies the actual
  651. color displayed for a particular color number.
  652.  
  653. Park
  654.     To move a hard disk's read/write heads to a position in which
  655. it is safe to turn off the power and transport the disk drive.  Many
  656. drives also lock the heads into position when they are parked,
  657. providing additional protection from sudden movement.
  658.  
  659. Pel
  660.     see Pixel
  661.  
  662. Pixel
  663.     A picture element, the smallest addressable unit of a graphical
  664. display.
  665.  
  666. Post
  667.     Make known, either generally or to a specific handler, that a
  668. particular event of interest has occurred.
  669.  
  670. POST
  671.     see Power-On Self-Test
  672.  
  673. Power-On Self-Test
  674.     A brief examination of the system's functionality performed
  675. each time the system is turned on.
  676.  
  677. Print Spooler
  678.     see SPOOL.
  679.  
  680. Program Segment Prefix
  681.     The Program Segment Prefix is a 256-byte data area prepended to
  682. a program when it is loaded.  It contains the command line that the
  683. program was invoked with, and a variety of housekeeping information for
  684. DOS.  See also INT 21h Function 26h.
  685.  
  686. Protected Mode
  687.     One of the operating modes of the 80286 and higher Intel
  688. processors, in which addresses used by programs no longer correspond to
  689. physical addresses and the CPU enforces various protection mechanisms
  690. designed to prevent one program from disrupting other programs or the
  691. operating system.  See also Real Mode, Virtual-86 Mode.
  692.  
  693. PSP
  694.     see Program Segment Prefix
  695.  
  696. PWORD
  697.     Six bytes.  Used to hold an 80386 protected-mode "far" address,
  698. consisting of a segment selector and a 32-bit offset, or a Turbo Pascal
  699. "real" variable.  See also DWORD, QWORD.
  700.  
  701. QWORD
  702.     (quad-word) Eight bytes.  See also DWORD, PWORD.
  703.  
  704. RAM
  705.     (Random Access Memory)    See also DRAM, SRAM.
  706.  
  707. Real Mode
  708.     One of the operating modes of the 80286 and higher Intel
  709. processors, and the only operating mode of the 8088, 8086, 80186, and
  710. 80188 processors.  In this mode, all addresses used by programs
  711. correspond directly to real physical addresses (thus the full name,
  712. Real Address Mode) and there are no CPU-imposed protections between
  713. programs.  See also Protected Mode, Virtual-86 Mode.
  714.  
  715. Real-Time Clock
  716.     A battery-powered clock which continues to maintain its time even
  717. while the system is powered down.  On PCs, the real-time clock contains a
  718. small amount of battery-powered memory (set CMOS RAM).
  719.  
  720. Redirector Interface
  721.     The set of device-independent INT 2Fh function calls invoked by
  722. the MSDOS kernel to operate on devices it recognizes as network
  723. devices.  These function calls provide a lower-level interface than the
  724. INT 21h calls made to DOS, allowing a program intercepting these
  725. functions to be simpler than one intercepting INT 21h calls.  See INT
  726. 2Fh Functions 1100h through 1130h.
  727.  
  728. Refresh
  729.     The process of periodically rewriting the contents of a DRAM
  730. memory chip to keep it from fading.  The term "refresh" is also commonly
  731. applied to redrawing the image on a CRT's phosphors.   See also DRAM.
  732.  
  733. RGB
  734.     (Red-Green-Blue) The color specification mechanism normally
  735. used in computer displays, where colors are separated into their
  736. primary-color components.  See also YUV.
  737.  
  738. RLL
  739.     (Run-Length Limited) A method of encoding data as a series of
  740. magnetic flux reversals on disk or tape.  RLL can achieve higher data
  741. densities than MFM recording because it encodes the data such that
  742. (on average), fewer than one flux reversal per data bit is required
  743. (however, timing becomes more critical).  RLL is actually an entire
  744. family of encoding methods, specified with two numbers indicating the
  745. minimum and maximum distances between one bits (flux transitions).  The
  746. variant normally called RLL is RLL-2,7; RLL-1,7 and RLL-3,9 are also in
  747. use.  MFM is in effect RLL-1,3.  See also FM, MFM.
  748.  
  749. ROM
  750.     (Read-Only Memory) A memory for program storage which may not be
  751. changed by the program as it runs.
  752.  
  753. RTC
  754.     see Real-Time Clock
  755.  
  756. Scan Code
  757.     The actual key number sent by the keyboard, which differs from the
  758. key codes seen by application programs.  The enhanced (101/102-key) keyboard
  759. actually sends different scan codes than the original (83/84-key) IBM
  760. keyboard, but these are normally translated by the keyboard controller into
  761. the scan codes used by the original keyboard before they become visible to
  762. programs.
  763.  
  764. Scatter/Gather
  765.     A technique in which the contiguous data of a disk sector or sectors
  766. is transferred to or from multiple non-contiguous areas of memory.  When
  767. reading into multiple areas of memory, this is called a scatter-read; the
  768. opposing operation is called gather-write.
  769.  
  770. Scatter-Read
  771.     see Scatter/Gather
  772.  
  773. SCSI
  774.     (Small Computer Systems Interface) A system-independent
  775. expansion bus typically used to connect hard disks, tape drives, and
  776. CD-ROMs to a computer.  A host adapter connects the SCSI bus to the
  777. computer's own bus.  See also ESDI, IDE.
  778.  
  779. SDA
  780.     see Swappable Data Area
  781.  
  782. Sector
  783.     The smallest addressable unit of data on a disk; under MS-DOS,
  784. this is normally 512 bytes.  See also Track.
  785.  
  786. SFT
  787.     see System File Table
  788.  
  789. SMM
  790.     (System Management Mode) A special CPU mode typically invoked
  791. on changes in power-supply status.  In this mode, additional hidden
  792. memory becomes available for storing the CPU's state and a control
  793. program to deal with the needs of power management or other critical
  794. events.
  795.  
  796. SPOOL
  797.     (Simultaneous Peripheral Operation OnLine)  The process of
  798. performing output to a slow peripheral such as a printer while other
  799. tasks continue running on the CPU.  This term dates back to mainframe
  800. days before the invention of timesharing.
  801.  
  802. SQL
  803.     (Structured Query Language)
  804.  
  805. SRAM
  806.     (Static Random Access Memory)  RAM which typically consists of one
  807. flip-flop per bit of memory.  Unlike DRAMs, static RAM retains its contents
  808. as long as power is applied.  Because there is no need to refresh the
  809. contents of memory addresses which are read, SRAM is faster than DRAM,
  810. but it is more expensive and typically is available in much smaller sizes
  811. than DRAM because each bit occupies more space on the chip.  See also DRAM.
  812.  
  813. SVGA
  814.     (Super VGA) A video adapter capable of higher resolution
  815. (pixels and/or colors) than the 320x200x256 and 640x480x16 which IBM's
  816. VGA adapter is capable of producing.  See also VESA.
  817.  
  818. Swappable Data Area
  819.     The portion of the DOS data segment containing all of the
  820. variables used internally by DOS to record the state of a function call
  821. in progress.  See also INT 21h Function 5D06h and INT 21h Function
  822. 5D0Bh.
  823.  
  824. System File Table
  825.     A System File Table is a DOS-internal data structure used to
  826. maintain the state of an open file for the DOS 2+ handle functions,
  827. just as an FCB maintains the state for DOS 1.x functions.  See also INT
  828. 21h Function 52h.
  829.  
  830. TCP
  831.     (Transmission Control Protocol) A higher level (session layer)
  832. of the TCP/IP protocol suite.  See also IP, TCP/IP.
  833.  
  834. TCP/IP
  835.     The protocol suite originally developed by DARPA for use on its
  836. ARPAnet network, which is now known as the Internet.  See also IP, TCP.
  837.  
  838. TSR
  839.     (Terminate and Stay Resident) A program which remains in memory
  840. after terminating in order to provide services to other programs or the
  841. user.  The name comes from the name of the DOS function call used to
  842. remain in memory after termination.
  843.  
  844. Track
  845.     One of multiple concentric circular rings of data on a single
  846. data-bearing surface of a disk.  Tracks at the same location on
  847. different surfaces form a cylinder.
  848.  
  849. UMB
  850.     see Upper Memory Block
  851.  
  852. UNC
  853.     (Universal Naming Convention) The standard way of describing
  854. network servers and their directories under MS-DOS and Windows NT.  A
  855. name in UNC format consists of two backslashes followed by the server
  856. name, optionally followed by another backslash and a list of
  857. backslash-separated fields; for example
  858. \\SERVER1\SHARED-DIR\SUBDIR1\SUBDIR2\FILENAME.EXT.
  859.  
  860. Upper Memory Block
  861.     A noncontiguous section of allocatable memory located between
  862. the 640K and 1024K addresses.  See also INT 21h Function 52h.
  863.  
  864. V86
  865.     see Virtual-86 Mode
  866.  
  867. VCPI
  868.     see Virtual Control Program Interface
  869.  
  870. VDM
  871.     see Virtual DOS Machine
  872.  
  873. VDS
  874.     see Virtual DMA Specification
  875.  
  876. VDU
  877.     (Video Display Unit)  Mainframe-speak for computer monitor.
  878.  
  879. Vertical Retrace
  880.     When a monitor has finished displaying an image by sweeping its
  881. electron beam(s) over the face of the CRT, it has to move the beam back up
  882. to the top of the display.  During the time this takes, the beam is turned
  883. off.  The vertical retrace interval is a good time to change the displayed
  884. picture for smooth animation.  See also Horizontal Retrace.
  885.  
  886. VESA
  887.     (Video Electronics Standards Association)  An industry group
  888. which sets both hardware and software standards and recommendations.
  889. The term VESA is also used to denote compliance with the VESA SuperVGA
  890. BIOS Extensions, a standard set of video BIOS functions for accessing
  891. video modes of higher resolution than those defined by IBM.
  892.  
  893. VGA
  894.     (Video Graphics Array) The video adapter introduced with the
  895. IBM PS/2 series of computers.
  896.  
  897. Virtual-86 Mode
  898.     One of the operating modes of the 80386 and 80486 processors in
  899. which user programs run as if the CPU were in Real Mode, while
  900. providing the protection and address-mapping capabilities of Protected
  901. Mode to a supervisor program which oversees the virtual machine on
  902. which the user programs are running.  This mode is called Virtual-86
  903. because one or more virtual 8086 environments are run on a single CPU.
  904. See also Protected Mode, Real Mode, Virtual Machine.
  905.  
  906. Virtual Control Program Interface
  907.     A simple API for protected-mode programs to allocate memory and
  908. switch into or out of protected mode.  See also DOS Protected-Mode Interface.
  909.  
  910. Virtual DMA Specification
  911.     A set of interrupt calls which permit the use of DMA even on
  912. systems running in protected or Virtual-86 mode with their address
  913. remapping, or systems such as Micro Channel PS/2s with multiple bus
  914. masters independently performing DMA operations.
  915.  
  916. Virtual DOS Machine
  917.     A special type of virtual machine provided by OS/2 version 2.0,
  918. in which a copy of MS-DOS or an MS-DOS compatible operating system (or
  919. even an incompatible 8086 operating system) is run and appears to have
  920. full control of the system.  See also Virtual Machine, INT 21h Function
  921. 64h.
  922.  
  923. Virtual Machine
  924.     One method for multitasking programs is to virtualize the CPU
  925. and other hardware, giving the appearance of sole possession of the
  926. system to each program being run.  Such a virtualized environment is
  927. called a virtual machine.  See also Virtual-86 Mode, Virtual DOS
  928. Machine.
  929.  
  930. virus
  931.     A program which attaches itself to other programs for the purpose
  932. of duplicating itself.  Viruses often (but not always) contain harmful
  933. code which is triggered by some event, after a certain number of
  934. reproductions, or on a specific date.  See also worm.
  935.  
  936. VM
  937.     see Virtual Machine
  938.  
  939. VxD
  940.     A virtual device driver for Windows 3.0 or 3.1.  See also
  941. device driver.
  942.  
  943. WORM
  944.     (Write Once, Read Many)  A storage medium which may be written
  945. exactly once, but may not be altered once data is stored.
  946.  
  947. worm
  948.     A program which duplicates itself, typically across networks.
  949. In contrast to a virus, a worm does not attach itself to other programs,
  950. but can reproduce itself independently.  See also virus.
  951.  
  952. Write-Through
  953.     One of two main types of caches, the write-through cache immediately
  954. writes any new information to the medium it is caching, so that the cache
  955. never contains information which is not already present on the cached device.
  956. See also cache,
  957.  
  958. XBDA
  959.     see Extended BIOS Data Area
  960.  
  961. XDI
  962.     see External Device Interface
  963.  
  964. XGA
  965.     (Extended Graphics Array)
  966.  
  967. XMS
  968.     see Extended Memory Specification
  969.  
  970. YIQ
  971.     see YUV
  972.  
  973. YUV
  974.     A color specification mechanism used in NTSC-type color
  975. television signals.  Y represents luminance (overall brightness, the
  976. only part of the signal used by black-and-white televisions), while U
  977. and V are chrominance (color) information.  Also called YIQ.  See also
  978. RGB.
  979.  
  980.                   --- end of file ---
  981.